Login     Sign up
Cannot Login as admin after installing latest
Neerja Buddhiraju (@nbuddhi)
Join date: Feb 4th 2011
Community posts: 5
View Profile
Send Message

Hello

I installed the jcow-pro that I got over the weekend, after which I got the message that it was installed successfully and i could login as "admin". However, when I try to login as admin, I get simply a blank page.

How do I resolve this? Any help or pointers would be appreciated.

Thanks!

180 months ago
Neerja Buddhiraju (@nbuddhi)
Join date: Feb 4th 2011
Community posts: 5
View Profile
Send Message

When I first go the [url]http://localhost:55555/index.php,[/url] it shows the links to login, signup and the login/password boxes and simple dashboard on the left. But when I click on ANY of the links, it just throws a blank page.

All my tables seem to be empty except jcow_accounts which has I record with admin user. I am not sure what hte password is though - the one I set did not work.

Thanks! any ideas would be appreciated.

180 months ago
Neerja Buddhiraju (@nbuddhi)
Join date: Feb 4th 2011
Community posts: 5
View Profile
Send Message

When I look in the Apache Error logs, here is what I see continuously printed:

[Mon Mar 07 12:33:57 2011] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/member, referer: [url]http://localhost:55555/index.php[/url]
[Mon Mar 07 12:34:03 2011] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/member, referer: [url]http://localhost:55555/index.php[/url]

Looks like I should have had a directory member under htdocs?
the Apache logs shows 404 for most of the urls accessed:

127.0.0.1 - - [07/Mar/2011:12:03:36 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:03:51 -0500] "GET /index.php HTTP/1.1" 200 8505
127.0.0.1 - - [07/Mar/2011:12:04:11 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:04:25 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:04:29 -0500] "GET /member/chpass HTTP/1.1" 404 211
127.0.0.1 - - [07/Mar/2011:12:14:05 -0500] "GET /test.php HTTP/1.1" 200 169
127.0.0.1 - - [07/Mar/2011:12:20:52 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:33:57 -0500] "GET /member/signup HTTP/1.1" 404 211
127.0.0.1 - - [07/Mar/2011:12:34:03 -0500] "GET /member/login HTTP/1.1" 404 210
127.0.0.1 - - [07/Mar/2011:12:34:10 -0500] "GET /member/signup HTTP/1.1" 404 211
127.0.0.1 - - [07/Mar/2011:12:34:16 -0500] "GET /browse HTTP/1.1" 404 204
127.0.0.1 - - [07/Mar/2011:12:54:51 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:55:11 -0500] "POST /member/loginpost HTTP/1.1" 404 214
127.0.0.1 - - [07/Mar/2011:12:55:21 -0500] "GET /member/signup HTTP/1.1" 404 211
127.0.0.1 - - [07/Mar/2011:12:55:28 -0500] "GET /browse HTTP/1.1" 404 204
127.0.0.1 - - [07/Mar/2011:12:56:10 -0500] "GET /member/signup HTTP/1.1" 404 211
127.0.0.1 - - [07/Mar/2011:12:56:17 -0500] "GET /member/chpass HTTP/1.1" 404 211

Thanks !

Thanks!

180 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

looks more that you have a problem with your .htaccess file or mod_rewrite is not on.

try this

[code]
$ubase = $uhome.'/index.php?p=';
//$ubase = $uhome.'/';
[/code]

instead of this

[code]
//$ubase = $uhome.'/index.php?p=';
$ubase = $uhome.'/';
[/code]

in my/config.php

180 months ago